AdHoc ビルドで Firebase Debug View を有効にする

xcode - How to debug Firebase on iOS AdHoc build - Stack Overflow

AppDelegate

var newArguments = ProcessInfo.processInfo.arguments
newArguments.append("-FIRDebugEnabled")
ProcessInfo.processInfo.setValue(newArguments, forKey: "arguments")

Firebase.configure() // これより先に設定する

ただし、 Scheme の設定で disable の設定が入ってたら Enable されないので注意。

スクリーンショット 2022-06-27 15.34.44.png

Firebase iOS Development